Example
Point class
void Point
::
setX(const int val) {
_x = val;
}
void Point
::
setY(const int val) {
_y = val;
}